21 void il3820_drawFastHLine(screen *dev,
int x,
int y,
int w,
int color) {
22 for (
int h = 0; h < w; h++) {
23 il3820_drawPixel(dev, x + h, y, color);
27 void il3820_drawFastVLine(screen *dev,
int x,
int y,
int w,
int color) {
28 for (
int h = 0; h < w; h++) {
29 il3820_drawPixel(dev, x, y + h, color);